home *** CD-ROM | disk | FTP | other *** search
- //***********************************************************************
- //
- // IdleDemo.h
- //
- //***********************************************************************
-
- class CMyApp : public CWinApp
- {
- public:
- virtual BOOL InitInstance ();
- virtual BOOL OnIdle (LONG);
- };
-
- class CMainWindow : public CFrameWnd
- {
- public:
- CMainWindow ();
- BOOL CursorInClient ();
- void UpdateReadout (CDC* = NULL);
-
- protected:
- afx_msg void OnPaint ();
- afx_msg void OnMouseMove (UINT, CPoint);
- afx_msg void OnExit ();
-
- DECLARE_MESSAGE_MAP ()
- };
-